import { PropsWithChildren } from "react"; import { FocusContext } from "../../context/FocusContext"; import useFocusable from "../../hooks/useFocusable"; type Props = { style: React.CSSProperties; }; const FocusContainer = ({ children, ...props }: PropsWithChildren) => { const { ref, focusId } = useFocusable({ focusable: false }); return (
{children}
); }; export default FocusContainer;